bbee5baf5579ae037ef9ccae69fc93ca85bfc1cd,sonar-runner-api/src/main/java/org/sonar/runner/api/EmbeddedRunner.java,EmbeddedRunner,runAnalysis,#Properties#IssueListener#,112
Before Change
Utils.writeProperties(dumpFile, copy);
logger.info("Simulation mode. Configuration written to " + dumpFile.getAbsolutePath());
} else {
doExecute(copy, issueListener);
}
}
After Change
Properties copy = new Properties();
copy.putAll(analysisProperties);
initAnalysisProperties(copy);
doExecute(copy, issueListener);
}
/**